From: Glenn Morris Date: Mon, 1 Nov 2010 02:51:59 +0000 (-0700) Subject: Silence compilation of startup.el. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~5853 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=69c8aa623fa696a010e48a774b8f64e80c08f499;p=emacs.git Silence compilation of startup.el. * lisp/startup.el (package-enable-at-startup, package-initialize): Silence compiler. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8991aa20b58..38c3cb15c49 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-11-01 Glenn Morris + * startup.el (package-enable-at-startup, package-initialize): + Silence compiler. + * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords): Silence compiler. diff --git a/lisp/startup.el b/lisp/startup.el index 31fb7507295..5343da65a10 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1,7 +1,7 @@ ;;; startup.el --- process Emacs shell arguments -;; Copyright (C) 1985, 1986, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000, -;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +;; Copyright (C) 1985, 1986, 1992, 1994, 1995, 1996, 1997, 1998, 1999, +;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 ;; Free Software Foundation, Inc. ;; Maintainer: FSF @@ -691,6 +691,9 @@ opening the first frame (e.g. open a connection to an X server).") (defvar server-name) (defvar server-process) +;; Autoload in package.el, but when we bootstrap, we don't have loaddefs yet. +(defvar package-enable-at-startup) +(declare-function package-initialize "package" ()) (defun command-line () (setq before-init-time (current-time) @@ -2381,5 +2384,4 @@ A fancy display is used on graphic displays, normal otherwise." (setq file (replace-match "/" t t file))) file)) -;; arch-tag: 7e294698-244d-4758-984b-4047f887a5db ;;; startup.el ends here